Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
web3-providers-http
Advanced tools
The web3-providers-http package is a part of the Web3.js library that allows you to interact with Ethereum nodes using HTTP. It provides a way to send JSON-RPC requests to an Ethereum node over HTTP, making it possible to perform various blockchain-related operations such as querying blockchain data, sending transactions, and more.
Connecting to an Ethereum Node
This feature allows you to connect to an Ethereum node using an HTTP provider. The code sample demonstrates how to create a new Web3 instance and connect it to a local Ethereum node running on port 8545.
const Web3 = require('web3');
const web3 = new Web3(new Web3.providers.HttpProvider('http://localhost:8545'));
console.log('Connected to Ethereum node:', web3.currentProvider.host);
Sending JSON-RPC Requests
This feature allows you to send JSON-RPC requests to the Ethereum node. The code sample demonstrates how to get the latest block number from the connected Ethereum node.
const Web3 = require('web3');
const web3 = new Web3(new Web3.providers.HttpProvider('http://localhost:8545'));
web3.eth.getBlockNumber().then(console.log);
Handling Errors
This feature allows you to handle errors that may occur when sending JSON-RPC requests. The code sample demonstrates how to catch and log errors when trying to get the latest block number.
const Web3 = require('web3');
const web3 = new Web3(new Web3.providers.HttpProvider('http://localhost:8545'));
web3.eth.getBlockNumber().then(console.log).catch(console.error);
The ethers.js library is a complete and compact library for interacting with the Ethereum blockchain and its ecosystem. It provides similar functionalities to web3-providers-http, such as connecting to Ethereum nodes, sending transactions, and querying blockchain data. Ethers.js is known for its simplicity and ease of use compared to Web3.js.
The web3 package is the main library of which web3-providers-http is a part. It provides a comprehensive set of tools for interacting with the Ethereum blockchain, including various providers (HTTP, WebSocket, etc.), utilities for handling accounts, contracts, and more. It is more feature-rich compared to web3-providers-http alone.
Ethjs is a lightweight and modular library for interacting with the Ethereum blockchain. It provides similar functionalities to web3-providers-http, such as sending JSON-RPC requests and handling blockchain data. Ethjs is designed to be minimalistic and modular, making it a good choice for projects that require a smaller footprint.
This is a sub-package of web3.js.
web3-providers-http
contains the Web3.js provider for the HTTP protocol.
You can install the package either using NPM or using Yarn
npm install web3-providers-http
yarn add web3-providers-http
Script | Description |
---|---|
clean | Uses rimraf to remove dist/ |
build | Uses tsc to build package and dependent packages |
lint | Uses eslint to lint package |
lint:fix | Uses eslint to check and fix any warnings |
format | Uses prettier to format the code |
test | Uses jest to run unit tests |
test:integration | Uses jest to run tests under /test/integration |
test:unit | Uses jest to run tests under /test/unit |
[4.2.0]
ALL_EVENTS
and ALL_EVENTS_ABI
constants, SendTransactionEventsBase
type, decodeEventABI
method (#6410)privateKeyToPublicKey
BaseTransaction
from the package (#6493)txUtils
from the package (#6493)EventLog
was added. (#6410)EventEmitter
has been implemented and exported. (#6398)checkRevertBeforeSending
in sendSignedTransaction
defaultTransactionBuilder
for value issue (#6509)recover
function, v
will be normalized to value 0,1 (#6344)convertToZod
method (#6434)EventEmitter
from web3-utils
that works in node envrioment as well as in the browser. (#6398)events
property was added to the receipt
object (#6410)FAQs
HTTP provider for Web3 4.x.x
The npm package web3-providers-http receives a total of 485,435 weekly downloads. As such, web3-providers-http popularity was classified as popular.
We found that web3-providers-http demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.